aa6814518627a953468d89828d1b9c703deaac76,src/main/java/org/thymeleaf/testing/templateengine/engine/cache/TestCache.java,TestCache,get,#String#,58

Before Change


    }

    public V get(final String key) {
        return this.cache.get(prefix(key));
    }

    public V get(final String key,

After Change


    }

    public V get(final K key) {
        return this.cache.get((K)prefix(key));
    }

    public V get(final K key,